home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / DropShell 2.0 sources Folder / DSUserProcs.h < prev    next >
Text File  |  1994-07-01  |  2KB  |  56 lines

  1. /******************************************************************************
  2. **
  3. **  Project Name:    DropShell
  4. **     File Name:    DSUserProcs.h
  5. **
  6. **   Description:    Header w/prototypes for specific AppleEvent handlers 
  7. **                    used by the DropShell
  8. **
  9. *******************************************************************************
  10. **                       A U T H O R   I D E N T I T Y
  11. *******************************************************************************
  12. **
  13. **    Initials    Name
  14. **    --------    -----------------------------------------------
  15. **    LDR            Leonard Rosenthol
  16. **    MTC            Marshall Clow
  17. **    SCS            Stephan Somogyi
  18. **
  19. *******************************************************************************
  20. **                      R E V I S I O N   H I S T O R Y
  21. *******************************************************************************
  22. **
  23. **      Date        Time    Author    Description
  24. **    --------    -----    ------    ---------------------------------------------
  25. **    02/20/94            LDR        Modified Preflight & Postflight to take item count
  26. **    01/25/92            LDR        Removed the use of const on the userDataHandle
  27. **    12/09/91            LDR        Added SelectFile & UserGlobals prototypes
  28. **    11/24/91            LDR        Added new routines & changed ones
  29. **    10/29/91            SCS        Changes for THINK C 5
  30. **    10/28/91            LDR        Officially renamed DropShell (from QuickShell)
  31. **                                Added a bunch of comments for clarification
  32. **    10/06/91    00:02    MTC        Converted to MPW C
  33. **    04/09/91    00:02    LDR        Original Version
  34. **
  35. ******************************************************************************/
  36.  
  37. #ifndef __DSUSERPROCS_H__
  38. #define __DSUSERPROCS_H__
  39.  
  40. #include "DSGlobals.h"
  41. #include "DSUtils.h"
  42.     
  43. pascal void InstallOtherEvents (void);
  44.  
  45. pascal void     OpenApp (void);
  46. pascal void     QuitApp (void);
  47. pascal Boolean    PreFlightDocs ( Boolean opening, short itemCount, Handle *userDataHandle );
  48. pascal void     OpenDoc ( FSSpecPtr myFSSPtr,  Boolean opening, Handle userDataHandle );
  49. pascal void     PostFlightDocs ( Boolean opening, short itemCount, Handle userDataHandle );
  50. pascal void     SelectFile ( void );
  51.  
  52. pascal Boolean    InitUserGlobals(void);
  53. pascal void        DisposeUserGlobals(void);
  54.  
  55. #endif
  56.